Skip to content

Instantly share code, notes, and snippets.

@JulioBorges
JulioBorges / n8n-affiliate-links.md
Last active March 21, 2026 00:49
n8n workflow de criação de links de afiliados
@ProdeusUnity
ProdeusUnity / windowsimagecollection.md
Last active March 21, 2026 00:45
Windows ISO files
OS version Arch File Host Size Download Link Rate Limits
Windows 1.0 8086 Winworld (Kansas City, Missouri) 541KB Download ❌ Yes, 25 per day
Windows 2.0 386 Winworld (Kansas City, Missouri) 2.80MB Download ❌ Yes, 25 per day
Windows 3.0 8086/386
@aravindanve
aravindanve / bypass-disable-devtool.md
Last active March 21, 2026 00:44
Bypass disable-devtool

(Working as of 2025-02-09)

There are websites that use disable-devtool to prevent you from opening or using devtools. They typically prevent you from right clicking or using the keyboard shortcut to open devtools. Even if you successfully do so, they detect it and redirect you elsewhere. You can bypass this by using one of the following ways.

Opening devtools

If the shortcut F12 on Windows or Option + ⌘ + I on Mac do not work. Press the three vertically aligned dots in the top right corner of your Google Chrome or Microsoft Edge window. Under the section "More Tools", you'll see the option to select "Developer Tools" which opens the toolkit in your window.

#EXTM3U
# ===== ARGENTINA =====
# Deportes
#EXTINF:-1 tvg-id="deportv" tvg-name="DeporTV" group-title="Deportes - Argentina",DeporTV
https://deportv.gob.ar/live/stream.m3u8
# Nacional
#EXTINF:-1 tvg-id="tvpublica" tvg-name="TV Pública" group-title="Nacional - Argentina",TV Pública
https://artv.watch/TVPublica.m3u
# Entretenimiento
@JonnyWong16
JonnyWong16 / sync_playlists_to_users.py
Last active March 21, 2026 00:37
Sync Plex playlists to shared users.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Description: Sync Plex playlists to shared users.
# Author: /u/SwiftPanda16
# Requires: plexapi
from plexapi.exceptions import NotFound
from plexapi.server import PlexServer
@mmozeiko
mmozeiko / !README.md
Last active March 21, 2026 00:32
Download MSVC compiler/linker & Windows SDK without installing full Visual Studio

This downloads standalone MSVC compiler, linker & other tools, also headers/libraries from Windows SDK into portable folder, without installing Visual Studio. Has bare minimum components - no UWP/Store/WindowsRT stuff, just files & tools for native desktop app development.

Run py.exe portable-msvc.py and it will download output into msvc folder. By default it will download latest available MSVC & Windows SDK from newest Visual Studio.

You can list available versions with py.exe portable-msvc.py --show-versions and then pass versions you want with --msvc-version and --sdk-version arguments.

To use cl.exe/link.exe first run setup_TARGET.bat - after that PATH/INCLUDE/LIB env variables will be updated to use all the tools as usual. You can also use clang-cl.exe with these includes & libraries.

To use clang-cl.exe without running setup.bat, pass extra /winsysroot msvc argument (msvc is folder name where output is stored).

@allysonsilva
allysonsilva / Full-Markdown.md
Last active March 21, 2026 00:27
⚡️ Full Markdown Example

Headers

# h1 Heading 8-)
## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading
#!/bin/sh
# Prerequisites (on MacOS with Homebrew installed)
# brew install dvdauthor dvdrtools ffmpeg
# Usage:
# chmod +x burndvd.sh
# ./burndvd.sh path/to/input_video.ext
input_file="$1"
@fnky
fnky / ANSI.md
Last active March 21, 2026 00:16
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27